
#
#Just create a Folder in your modules directory and name it whatever you want to. Inside the new file, create an index.php and #insert the following code:
#

<?php 

if (!eregi("modules.php", $_SERVER['PHP_SELF'])) { 
    die ("You can't access this file directly..."); 
} 

$module_name = basename(dirname(__FILE__)); 

$index = 0; # 0=don't show right side blocks, 1=show right side blocks 

function serverInfo() { 
    global $module_name; 
    include("header.php"); 
    OpenTable(); 
    include("blocks/block-blockname.php"); 
    echo $content; 
    CloseTable(); 
    include("footer.php"); 
} 

switch($func) { 

    default: 
    serverInfo(); 
    break; 

} 

?> 


#
#on line... include("blocks/block-blockname.php"); change the blockname to the actual block name you want to be used as a #module. Activate and go.
#